projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2baeabf
)
(get_next_display_element): Fix case of empty
author
Gerd Moellmann
<gerd@gnu.org>
Fri, 2 Feb 2001 11:51:06 +0000
(11:51 +0000)
committer
Gerd Moellmann
<gerd@gnu.org>
Fri, 2 Feb 2001 11:51:06 +0000
(11:51 +0000)
display table entry.
src/xdisp.c
patch
|
blob
|
history
diff --git
a/src/xdisp.c
b/src/xdisp.c
index 247e111750ecac81bc8adaf0c876aae2baff2f40..eaaff196079d54db0369580f62f0a8ddd38d87bc 100644
(file)
--- a/
src/xdisp.c
+++ b/
src/xdisp.c
@@
-3877,9
+3877,13
@@
get_next_display_element (it)
it->dpend = v->contents + v->size;
it->current.dpvec_index = 0;
it->method = next_element_from_display_vector;
+ success_p = get_next_display_element (it);
+ }
+ else
+ {
+ set_iterator_to_next (it, 0);
+ success_p = get_next_display_element (it);
}
-
- success_p = get_next_display_element (it);
}
/* Translate control characters into `\003' or `^C' form.